dfu:ext4:fix Fix ext4{read|write} command formatting
authorŁukasz Majewski <[email protected]>
Fri, 28 Jun 2013 16:41:49 +0000 (18:41 +0200)
committerTom Rini <[email protected]>
Wed, 3 Jul 2013 12:41:23 +0000 (08:41 -0400)
In the following commit:
"dfu: Support larger than memory transfers."
SHA1: ea2453d56b8860dbd18a3c517531ffc8dcb5c839

The ext4{read|write} command formatting has been changed. It removed
a write mandatory [sizebytes] parameter.

It extents DFU_FS_EXT4 case at mmc_file_op to provide mandatory
parameter for DFU write.

Signed-off-by: Lukasz Majewski <[email protected]>
Cc: Tom Rini <[email protected]>
Cc: Pantelis Antoniou <[email protected]>
Cc: Marek Vasut <[email protected]>
Cc: Heiko Schocher <[email protected]>
drivers/dfu/dfu_mmc.c

index e2f39784005549170839f0e559300764715966bc..e7ee0770c202ea727730863fb69910b27117dbb2 100644 (file)
@@ -98,6 +98,8 @@ static int mmc_file_op(enum dfu_mmc_op op, struct dfu_entity *dfu,
                        op == DFU_OP_READ ? "load" : "write",
                        dfu->data.mmc.dev, dfu->data.mmc.part,
                        (unsigned int) buf, dfu->name);
+               if (op == DFU_OP_WRITE)
+                       sprintf(cmd_buf + strlen(cmd_buf), " %ld", *len);
                break;
        default:
                printf("%s: Layout (%s) not (yet) supported!\n", __func__,